Assignment operator
Just as the simple assignment operator = returns
the value that it stored, all of the assignment
operators return the value stored in the variable
on the left-hand-side.
//these four variables represent the sides of a rectangle
int left;
int top;
int right;
int bottom;
//make it a square whose sides are 4
left = top = right = bottom = 4;